home *** CD-ROM | disk | FTP | other *** search
- #
- # Zustands-▄berwachungs-Script
- # State Watch Script
- #
- # SERP
- # das meiste kann vom Fighter uebernommen werden
- # created: 14-Jan-2002 Peter
- #
- # (C) COPYRIGHT 2002 RADONLABS GMBH
- #
-
- # differnce to fighters: explode as soon as collided
- proc serpwatch_handcontrol {} {
-
- # evtl auf normal zurueck
- if {[.iskilled] == "true"} {
- if {"distancechecker" == [.getreasonofdeath]} {
- .announcestate distancedeath
- } else {
- .announcestate explode
- }
- } elseif {[.islifetimeover] == "true"} {
- .announcestate explode
- } elseif {[.iscollided] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "false"} {
- .announcestate normal
- } elseif {[.isturbomove] == "true"} {
- .announcestate handcontrolturbo
- }
- }
-
- proc serpwatch_handcontrolturbo {} {
-
- # evtl auf normal zurueck
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.islifetimeover] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.iscollided] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "false"} {
- .announcestate normal
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate handcontrol
- }
- }
-
- proc serpwatch_goto {} {
-
- set ttype [lindex [.gettarget] 0]
- if {"vehicle" == $ttype} {
- set target [lindex [.gettarget] 1]
- } else {
- set target "null"
- }
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.islifetimeover] == "true"} {
- .announcestate explode
- } elseif {[.iscollided] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "true"} {
- .announcestate handcontrol
- } elseif {[.getavoidcollisionkind] != "nothing"} {
- # Vor Zielrelevanten Sachen machen! Wenn wir auf unsere garage
- # zufliegen, dann wird kein Ausweichen gemeldet (das weiis das avoidmodul)
- .pushstate
- .announcestate avoidcollision
- } elseif {[.hastarget] == "false"} {
- .announcestate waitsearch
- } elseif {[.reachedtarget] == "true"} {
-
- # at garage?
- if {[.getgarage] == $target} {
- .announcestate approachgarage
- }
-
- # break off formation, give free members my target
- .givetargettomembers false
- } elseif {[.isturbomode] == "true"} {
- .announcestate gototurbo
- }
- }
-
-